home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / exec / funecho.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  373 b   |  23 lines

  1. /*
  2. \funcref{fun\_echo}{void fun\_echo ()}
  3.     {}
  4.     {}
  5.     {}
  6.     {}
  7.     {funecho.c}
  8.     {
  9.  
  10.         This function is executed when an {\em op\_echo} opcode is encountered.
  11.         The global variable {\em echo} is set to the {\em vu.intval} value of
  12.         the last pushed variable.
  13.  
  14.     }
  15. */
  16.  
  17. #include "icm-exec.h"
  18.  
  19. void fun_echo ()
  20. {
  21.     echo = stack [sp].vu.intval;
  22. }
  23.